home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 7
/
Aminet 7 - August 1995.iso
/
Aminet
/
text
/
hyper
/
ADtoHT2_1.lha
/
Source.lha
/
MyLib.lha
/
stdio
/
fprintf.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-03-04
|
342 b
|
19 lines
#include <stdarg.h>
#include <stdio.h>
/************************************************************************/
#undef fprintf
int fprintf(FILE *Stream, const char *FormatString, ...)
{
int Result;
va_list Params;
va_start(Params,FormatString);
Result=vfprintf(Stream,FormatString,Params);
va_end(Params);
return Result;
}